home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / QuickDraw / Imageer 1.0.0d3 / source / PreCompiledHeaders.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-16  |  2.4 KB  |  168 lines  |  [TEXT/MPS ]

  1. /****************************************************/
  2. /*                                                    */
  3. /*    File:        PreCompiledHeaders.c                */
  4. /*                                                    */
  5. /*    Program:    Imageer                                */
  6. /*                                                    */
  7. /*    By:            Jason Hodges-Harris                    */
  8. /*                                                    */
  9. /*    Created:    26/10/95  00:00:00 AM                */
  10. /*                                                    */
  11. /*    Version:    1.0.0d3                                */
  12. /*                                                    */
  13. /*    Copyright:    © 1995-96 Apple Computer, Inc.,        */ 
  14. /*                    all rights reserved.            */        
  15. /*                                                    */
  16. /****************************************************/
  17.  
  18.  
  19. /**** Macintosh Toolbox Headers *****/
  20.  
  21. #ifndef __COMPONENTS__
  22. #include <Components.h>
  23. #endif
  24.  
  25. #ifndef __CONTROLS__
  26. #include <Controls.h>
  27. #endif
  28.  
  29. #ifndef __CURSORCTL__
  30. #include <CursorCtl.h>
  31. #endif
  32.  
  33. #ifndef __DESK__
  34. #include <Desk.h>
  35. #endif
  36.  
  37. #ifndef __DEVICES__
  38. #include <Devices.h>
  39. #endif
  40.  
  41. #ifndef __DIALOGS__
  42. #include <Dialogs.h>
  43. #endif
  44.  
  45. #ifndef __DISKINIT__
  46. #include <DiskInit.h>
  47. #endif
  48.  
  49. #ifndef __ERRORS__
  50. #include <Errors.h>
  51. #endif
  52.  
  53. #ifndef __EVENTS__
  54. #include <Events.h>
  55. #endif
  56.  
  57. #ifndef __FILES__
  58. #include <Files.h>
  59. #endif
  60.  
  61. #ifndef __FOLDERS__
  62. #include <Folders.h>
  63. #endif
  64.  
  65. #ifndef __FONTS__
  66. #include <Fonts.h>
  67. #endif
  68.  
  69. #ifndef __GESTALT__
  70. #include <Gestalt.h>
  71. #endif
  72.  
  73. #ifndef __GXENVIRONMENT__
  74. #include <GXEnvironment.h>
  75. #endif
  76.  
  77. #ifndef __GXGRAPHICS__
  78. #include <GXGraphics.h>
  79. #endif
  80.  
  81. #ifndef __GXMATH__
  82. #include <GXMath.h>
  83. #endif
  84.  
  85. #ifndef __GXTYPES__
  86. #include <GXTypes.h>
  87. #endif
  88.  
  89. #ifndef __IMAGECOMPRESSION__
  90. #include <ImageCompression.h>
  91. #endif
  92.  
  93. #ifndef __LOWMEM__
  94. #include<LowMem.h>
  95. #endif
  96.  
  97. #ifndef __MEMORY__
  98. #include <Memory.h>
  99. #endif
  100.  
  101. #ifndef __MENUS__
  102. #include <Menus.h>
  103. #endif
  104.  
  105. #ifndef __OSUTILS__
  106. #include <OSUtils.h>
  107. #endif
  108.  
  109. #ifndef __PALETTES__
  110. #include <Palettes.h>
  111. #endif
  112.  
  113. #ifndef __PICTUTILS__
  114. #include <PictUtils.h>
  115. #endif
  116.  
  117. #ifndef __QUICKDRAW__
  118. #include <QuickDraw.h>
  119. #endif
  120.  
  121. #ifndef __QUICKTIMECOMPONENTS__
  122. #include <QuickTimeComponents.h>
  123. #endif
  124.  
  125. #ifndef __QDOFFSCREEN__
  126. #include <QDOffscreen.h>
  127. #endif
  128.  
  129. #ifndef __SEGLOAD__
  130. #include <SegLoad.h>
  131. #endif
  132.  
  133. #ifndef __SCRIPT__
  134. #include <Script.h>
  135. #endif
  136.  
  137. #ifndef __STANDARDFILE__
  138. #include <StandardFile.h>
  139. #endif
  140.  
  141. #ifndef __STRING__
  142. #include <string.h>
  143. #endif
  144.  
  145. #ifndef __STRINGS__
  146. #include <Strings.h>
  147. #endif
  148.  
  149. #ifndef __TEXTEDIT__
  150. #include <TextEdit.h>
  151. #endif
  152.  
  153. #ifndef __TEXTUTILS__
  154. #include <TextUtils.h>
  155. #endif
  156.  
  157. #ifndef __TOOLUTILS__
  158. #include <ToolUtils.h>
  159. #endif
  160.  
  161. #ifndef __TYPES__
  162. #include <Types.h>
  163. #endif
  164.  
  165. #ifndef __WINDOWS__
  166. #include <Windows.h>
  167. #endif
  168.